home *** CD-ROM | disk | FTP | other *** search
/ Multimedia Selection / Multimedia Selection Volume One - CD-ROM / MULTIMEDIA SELECTION____________.ISO / utils / tmtouch / touch.doc < prev    next >
Encoding:
Text File  |  1993-07-29  |  906 b   |  23 lines

  1. touch.doc - documentation for TOUCH - Copyright 1987-1993 TDRMSoft
  2.  
  3.     TOUCH updates the date and time associated with a file.  It is useful
  4. for marking certain files for backup, as well as forcing compilations
  5. when programming using MAKEFILEs.  
  6.  
  7. Note: wildcards aren't supported, so use the FOR command.  See examples
  8. for hints, or your DOS manual for more information.
  9.  
  10.  
  11. Usage:      touch filename
  12.  
  13. Examples:
  14.    Update README.TXT file:                    touch readme.txt
  15.    Update all files in current directory:     for %f in (*.*) do touch %f
  16.    Update all .c files in current directory:  for %f in (*.c) do touch %f
  17.  
  18. If you use this program regularly, please send $10.00 to:
  19.     TDRMSoft
  20.     400 Central Park West - 20R        Source code in C available for $50.00
  21.     New York, NY 10025-5858                Tom Milne
  22.     (212)-865-2719                         TMILNE@AOL.COM
  23.